home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 21
/
Cream of the Crop 21 (Terry Blount) (October 1996).iso
/
program
/
srcbkvt.zip
/
LISTBOX.ZIP
/
ABOUT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-11-30
|
583b
|
38 lines
{
* Unit Name: about.pas
* Author: William Stamatakis
* Created: 11 '95
*
* Note: ListBox Component About Dialog (TAboutBox)
}
unit About;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
OKButton: TBitBtn;
Image2: TImage;
Label1: TLabel;
Label3: TLabel;
Bevel2: TBevel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
end.